@charset "UTF-8";

/* ###################### Aqui o Codigo está relacionado ao Home-section ####################### */

*, *::before, *::after {
	box-sizing: border-box;
}

.top-navbar {
	display: flex;
	position: fixed;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background-color: var(--navbar-bg);
	color: var(--navbar-font);
	font-family: "Poppins", sans-serif;
	padding: 0 0;
	top: 0;
	left: 0;
	height: 8vh;
	width: 100%;
	/* max-width: 100vw; */
	z-index: 1000 !important;
}

.montserrat-800 {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 800;
}

.montserrat-600 {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
}


.navbar-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: visible;
	box-shadow: 0px 2px rgba(0, 0, 0, 0.25);
}

.logo-container {
	display: flex;
	align-items: center;
	width: 12vw;
}

.logo {
  /* width: 3.5vw; */
	width: 4.5vw;
	height: auto;
}

.logo-text {
	/* margin-left: 0.2vw; */
	color: var(--logo-font);
}

.logo-text b {
	font-size: 20px;
	font-weight: 900;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	/* padding-left: 1rem; */
	margin-left: 1rem;
	height: 8vh;
}

.nav-item {
	position: relative;
	height: 100%;
	flex: 1;
	max-width: 6rem;
}

.nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--navitem-font);
	text-decoration: none;
	height: 100%;
	padding: 0.4em 0.5em;
	transition: background-color 0.3s;
	cursor: pointer;
}

.nav-link i {
  font-size: 1.4rem; /* Equivale a ~22.4px */
}

.nav-link span {
  font-size: 0.75rem; /* Equivale a ~12px */
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
	background-color: var(--navitem-bg-hover);
	color: var(--navitem-font-hover);
	border-radius: 6px;
}

.has-submenu .sub-menu {
	display: none;
	position: absolute;
	left: 0;
	background-color: var(--submenu-bg);
	min-width: 200px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	z-index: 999;
	flex-direction: column;
	margin-top: 0;
	top: 100%;
	border-radius: 3px;
}

.has-submenu:hover .sub-menu {
	display: flex;
	cursor: pointer;
}

.sub-menu li {
	padding: 0.7em;
	list-style-type: none;
	border-radius: 3px;
}

.sub-menu li a {
	color: var(--submenu-font);
	text-decoration: none;
	font-size: 13px;
	font-family: "Roboto";
	font-weight: 400;
	border-radius: 3px;
}

.sub-menu li:hover {
	background-color: var(--submenu-bg-hover);
	-ms-transform: scale(1.05); /* IE 9 */
    -webkit-transform: scale(1.05); /* Safari 3-8 */
    transform: scale(1.05); 
}

.sub-menu li:hover a {
	color: var(--submenu-font-hover);
	-ms-transform: scale(1.05); /* IE 9 */
    -webkit-transform: scale(1.05); /* Safari 3-8 */
    transform: scale(1.05); 
}

.nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--navbar-icon);
	text-decoration: none;
	padding: 0.7em;
	transition: background-color 0.3s;
	cursor: pointer; /* cursor tipo mãozinha */
	height: 100%;
}

.nav-item.active .nav-link {
	background-color: var(--navitem-bg-hover);
	color: var(--navitem-font-hover);
	border-radius: 6px;
	cursor: pointer;
}

.nav-item.active .nav-link i,
.nav-item.active .nav-link span {
	color: var(--navitem-font-hover);
}

.nav-item:hover a,
.nav-item:hover {
	-ms-transform: scale(1.05); /* IE 9 */
    -webkit-transform: scale(1.05); /* Safari 3-8 */
    transform: scale(1.05); 
}

.search-wrapper {
	position: relative;
	width: 16vw;
	height: 100%; /* passa a ocupar 100% da altura do .navbar-container */
	margin-left: auto; /* empurra tudo para a direita, como já vimos */
	display: flex; /* transforma em flex container */
	align-items: center;
}

.input-global-search {
	width: 100%;
	padding: 5px 30px 5px 10px;
	border-radius: 5px;
	border: none;
}

.icon-search {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--navbar-icon);
}

.profile-container {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	font-size: 0.8rem;
	width: 13rem;
	right: 0.2rem;
	max-height: 7vh;
	border-radius: 0.5rem;
}

.profile-details {
	margin-left: 5px;
}

.profile-container {
	position: relative;
	gap: 1.5rem;
	margin-right: 0;
}

.profile-container:hover {
	background-color: var(--submenu-bg);
	color: var(--submenu-font-hover);
}

.profile-container:hover .sub-menu-profile {
	display: block;
	background-color: var(--submenu-bg);
}

.sub-menu-profile {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: var(--submenu-bg-hover);
	border-radius: 5px;
	overflow: hidden;
	z-index: 1000;
	width: 100%;
}

.sub-menu-profile ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sub-menu-profile li {
	padding: 10px;
	color: var(--submenu-font);
	cursor: pointer;
}

.sub-menu-profile ul li:hover {
	background-color: var(--submenu-bg-hover);
	cursor: pointer;
}

.sub-menu li.active-submenu {
	background-color: var(--submenu-bg-hover);
}

.sub-menu li.active-submenu a {
	color: white;
}

.home-section {
	position: relative;
	background: var(--home-section-bg);
	/* height: 100%; */
	/* min-height: 100vh; */
	top: 8vh;
	height: 90vh;
	left: 0;
	/* width: calc(100% - 15vw); */
	width: 100%;
	/* transition: all 0.5s ease; */
	z-index: 0;
	display: flex; /* DISPLAY ADICIONADO */
	flex-direction: column; /* FLEX-DIRECTION ADICIONADO*/
	align-items: center;
	justify-content: space-between; /* JUSTIFY-CONTENT ADICIONADO */
}

.home-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	z-index: 1;
	margin-top: 0; /* MARGIN-TOP ALTERADO  ALterar futuramente para 4% e 7%*/
	width: 100%; /* WIDTH ADICIONADO */
	height: auto;
}

.home-align-content {
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 0;
	justify-content: center;
	width: 98%;
}

.div-scroll-cadastro {
	display: flex;
	flex-direction: column;
	width: 100%; /* não use 100vw aqui */
	max-height: 77vh; /* se quiser limite de altura */
	overflow-y: auto;
}

/* .div-scroll-cadastro .container{
	margin: 0 ;
	width: calc(100% - 5px);
	margin-bottom: 1.5rem;
} */
.div-scroll-cadastro .container {
	margin: 0;
	/* width: calc(100% - 5px);  ← remover */
	width: 100%;
	margin-bottom: 1.5rem;
	padding: 1rem; /* opcional: padding horizontal */
}

.div-scroll-cadastro::-webkit-scrollbar {
	background: transparent;
	width: 10px;
}

.div-scroll-cadastro::-webkit-scrollbar-thumb {
	background-color: var(--scroll-bg);
	border-radius: 15px;
}

.div-content-consulta {
	width: 99%;
	height: 85vh;
	display: flex;
	flex-direction: column;
}

.div-content-consulta .container {
	margin: 0;
	/* height: auto; */
	height: 100%;
}

.div-content-negociacao {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0.5rem;
}

.div-content-negociacao .div-scroll-negociacao {
	width: 100%;
	height: 72vh;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.div-content-negociacao .div-scroll-negociacao .container {
	margin: 0 0;
	width: calc(100% - 10px);
}

.div-content-negociacao .div-scroll-negociacao:first-child .container {
	margin: 0 0 3vh 0;
}

.div-content-negociacao .div-scroll-negociacao::-webkit-scrollbar-thumb {
	padding: 15px;
}

.div-content-negociacao .div-scroll-negociacao::-webkit-scrollbar {
	background: transparent;
	width: 10px;
}

.div-content-negociacao .div-scroll-negociacao::-webkit-scrollbar-thumb {
	background-color: var(--scroll-bg);
	border-radius: 15px;
}

/* ####################### DAQUI EM DIANTE CSS CORRESPONDENTE AO HEADER ######################### */
.funcional {
	align-items: center;
	display: flex;
	margin: 0.5vw; /* alinhamento barra ajustar by:PH */
	gap: 0.5vw;
}

.msg-local-pag {
	display: none;
	width: 98%;
	height: 2vh;
	margin: 1rem auto;
	align-items: center;
	text-align: center;
	/* transition: margin-left 0.5s ease; */
	align-self: flex-start;
}

.estilo-negociacao {
	position: absolute;
	/* top: 13.5vh; */
	left: 1.45vw;
	pointer-events: none;
}

.mensagem-local {
	color: var(--notification-font);
	font-size: 15px;
	font-weight: 500;
	font-family: "Roboto";
	transition: margin-left 0.5s ease;
}

.div-pesquisa-pag {
	width: 27vw;
	display: flex;
	transition: margin-left 0.5s ease;
	align-items: center;
	position: relative;
}

.div-pesquisa-pag .input-global-search {
	padding: 2px 40px 2px 5px;
	font-size: 14px;
	/* border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: none;
	border-radius: 4px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px; */
}

@media (max-width: 1024px) {
	.logo {
		width: 5vw;
	}
	.logo-text {
		font-size: 18px;
	}
	.nav-link i {
		font-size: 1.2rem;
	}
	.nav-link span {
		font-size: 0.7rem;
	}
	.search-wrapper {
		width: 30vw;
	}
	.input-global-search {
		font-size: 0.85rem;
	}
	.profile-details {
		font-size: 0.85rem;
	}
}
/* =================== HAMBURGER + RESPONSIVO =================== */
.hamburger {
	display: none;
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--navbar-icon);
	margin-left: 0.5rem;
	cursor: pointer;
}

/*# sourceMappingURL=top_navbar.css.map */
